added samples
[windows-sources.git] / sdk / samples / all in on code / Visual Studio 2010 / CSExtractAudioFile / Program.cs
blob2264d27b56a8eddc7a1dc4a007d74b64a14f3957
1 /********************************** Module Header **********************************\
2 * Module Name: Program.cs
3 * Project: CSExtractAudioFile
4 * Copyright (c) Microsoft Corporation.
6 * The Program.cs file is automatically generated as the entry point of the program.
8 * This source is subject to the Microsoft Public License.
9 * See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
10 * All other rights reserved.
12 * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
13 * EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
15 \***********************************************************************************/
17 using System;
18 using System.Windows.Forms;
21 namespace CSExtractAudioFile
23 static class Program
25 /// <summary>
26 /// The main entry point for the application.
27 /// </summary>
28 [STAThread]
29 static void Main()
31 Application.EnableVisualStyles();
32 Application.SetCompatibleTextRenderingDefault(false);
33 Application.Run(new MainForm());